Skip to content

Commit

Permalink
change the eslintrc config to match my ide
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Alemayhu <[email protected]>
  • Loading branch information
aalemayhu committed Jan 5, 2019
1 parent db72944 commit 6603b73
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

17 changes: 17 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
env: {
node: true,
commonjs: true,
mocha: true
},
extends: "eslint:recommended",
parserOptions: {
ecmaVersion: 2018,
sourceType: "module"
},
rules: {
"linebreak-style": ["error", "unix"],
quotes: ["error", "double"],
semi: ["error", "always"]
}
};

0 comments on commit 6603b73

Please sign in to comment.