mirror of https://github.com/MKRhere/pw
Muthu Kumar
7 years ago
3 changed files with 41 additions and 0 deletions
@ -0,0 +1,30 @@ |
|||
module.exports = { |
|||
"env": { |
|||
"browser": true, |
|||
"commonjs": true, |
|||
"es6": true |
|||
}, |
|||
"extends": "eslint:recommended", |
|||
"parserOptions": { |
|||
"sourceType": "module" |
|||
}, |
|||
"rules": { |
|||
"indent": [ |
|||
"error", |
|||
"tab" |
|||
], |
|||
"linebreak-style": [ |
|||
"error", |
|||
"unix" |
|||
], |
|||
"quotes": [ |
|||
"error", |
|||
"single" |
|||
], |
|||
"semi": [ |
|||
"error", |
|||
"never" |
|||
], |
|||
"no-console": "off" |
|||
} |
|||
}; |
@ -0,0 +1,4 @@ |
|||
node_modules |
|||
public/js |
|||
public/css |
|||
.sass-cache |
@ -0,0 +1,7 @@ |
|||
{ |
|||
"editor.renderControlCharacters": true, |
|||
"editor.renderWhitespace": "boundary", |
|||
"editor.insertSpaces": false, |
|||
"editor.tabSize": 4, |
|||
"files.eol": "\n" |
|||
} |
Loading…
Reference in new issue