Skip to content

Commit

Permalink
coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Feb 19, 2019
1 parent 883d371 commit dd2c279
Showing 1 changed file with 11 additions and 20 deletions.
31 changes: 11 additions & 20 deletions tests/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,16 @@
module.exports = {
"env": {
"browser": true,
"amd": true,
"commonjs": true
'env': {
'browser': true,
'amd': true,
'commonjs': true
},
"globals": {
"Tracy": true
'globals': {
'Tracy': true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
"tab"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
'extends': 'eslint:recommended',
'rules': {
'indent': ['error', 'tab'],
'quotes': ['error', 'single'],
'semi': ['error', 'always']
}
};

0 comments on commit dd2c279

Please sign in to comment.