mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-15 08:17:07 +00:00
always quote props
This commit is contained in:
parent
5c13d2c823
commit
92d2bab2c6
1 changed files with 4 additions and 2 deletions
|
@ -7,7 +7,9 @@ module.exports = {
|
|||
"mocha": true
|
||||
},
|
||||
"globals": {
|
||||
"expect": true
|
||||
"expect": true,
|
||||
"Tone": true,
|
||||
"Interface": true,
|
||||
},
|
||||
"extends": "eslint:recommended",
|
||||
"rules": {
|
||||
|
@ -19,7 +21,7 @@ module.exports = {
|
|||
"no-throw-literal" : [ "error" ],
|
||||
"no-useless-call" : [ "error" ],
|
||||
"no-unmodified-loop-condition": [ "error" ],
|
||||
"quote-props" : [ "error", "consistent" /*"as-needed"*/ ],
|
||||
"quote-props" : [ "error", "always" ],
|
||||
"quotes": [ "error","double" ],
|
||||
"no-lonely-if" : [ "error" ],
|
||||
"semi": [ "error", "always" ],
|
||||
|
|
Loading…
Reference in a new issue