Navigation Menu

Skip to content

Commit

Permalink
merge in development
Browse files Browse the repository at this point in the history
  • Loading branch information
TimvanScherpenzeel committed Oct 8, 2020
2 parents 2f40e97 + d502764 commit c2ae758
Show file tree
Hide file tree
Showing 17 changed files with 253 additions and 284 deletions.
45 changes: 25 additions & 20 deletions .eslintrc.js
Expand Up @@ -3,24 +3,29 @@ const WARN = 1;
const ERROR = 2;

module.exports = {
env: {
node: true,
},
extends: ['plugin:@typescript-eslint/recommended', 'prettier/@typescript-eslint'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
'@typescript-eslint/ban-ts-ignore': OFF,
'sort-keys': [
ERROR,
'asc',
{
caseSensitive: true,
natural: false,
},
],
},
env: {
node: true,
},
extends: [
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
'@typescript-eslint/ban-ts-ignore': OFF,
'@typescript-eslint/explicit-module-boundary-types': OFF,
'@typescript-eslint/no-explicit-any': WARN,
'sort-keys': [
ERROR,
'asc',
{
caseSensitive: true,
natural: false,
},
],
},
};
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Tim van Scherpenzeel
Copyright (c) 2020 Tim van Scherpenzeel

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Binary file modified benchmarks.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion benchmarks/d-amd.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion benchmarks/d-geforce.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion benchmarks/d-nvidia.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion benchmarks/d-radeon.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/index.ts
@@ -1,7 +1,7 @@
// Application
import { getGPUTier } from '../src';

(async (): Promise<void> => {
(async () => {
const data = await getGPUTier({
benchmarksURL: '/build/benchmarks',
});
Expand Down

0 comments on commit c2ae758

Please sign in to comment.