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 883d371 commit dd2c279Copy full SHA for dd2c279
tests/.eslintrc.js
@@ -1,25 +1,16 @@
1
module.exports = {
2
- "env": {
3
- "browser": true,
4
- "amd": true,
5
- "commonjs": true
+ 'env': {
+ 'browser': true,
+ 'amd': true,
+ 'commonjs': true
6
},
7
- "globals": {
8
- "Tracy": true
+ 'globals': {
+ 'Tracy': true
9
10
- "extends": "eslint:recommended",
11
- "rules": {
12
- "indent": [
13
- "error",
14
- "tab"
15
- ],
16
- "quotes": [
17
18
- "single"
19
20
- "semi": [
21
22
- "always"
23
- ]
+ 'extends': 'eslint:recommended',
+ 'rules': {
+ 'indent': ['error', 'tab'],
+ 'quotes': ['error', 'single'],
+ 'semi': ['error', 'always']
24
}
25
};
0 commit comments