We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea51d83 commit d7ea4cfCopy full SHA for d7ea4cf
.eslintrc.js
@@ -4,6 +4,9 @@ module.exports = {
4
'amd': true,
5
'commonjs': true
6
},
7
+ 'parserOptions': {
8
+ 'ecmaVersion': 6
9
+ },
10
'globals': {
11
'Tracy': true
12
@@ -12,6 +15,10 @@ module.exports = {
15
'indent': ['error', 'tab'],
13
16
'quotes': ['error', 'single'],
14
17
'semi': ['error', 'always'],
- 'func-style': ['error', 'expression']
18
+ 'func-style': ['error', 'expression'],
19
+ 'prefer-arrow-callback': ['error'],
20
+ 'arrow-parens': ['error'],
21
+ 'arrow-spacing': ['error'],
22
+ 'no-var': ['error']
23
}
24
};
0 commit comments