Skip to content

Commit

Permalink
Add eslint as dev-dep and include .eslintrc. Closes GrapesJS#126
Browse files Browse the repository at this point in the history
  • Loading branch information
artf committed Jun 28, 2017
1 parent cb39db8 commit 2a464fc
Show file tree
Hide file tree
Showing 4 changed files with 443 additions and 36 deletions.
16 changes: 16 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"strict": 0,
"quotes": [0, "single"],
"eol-last": [0],
"no-mixed-requires": [0],
"no-underscore-dangle": [0]
}
}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
.settings/
.sass-cache/
.project
.eslintrc
npm-debug.log
style/.sass-cache/

Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,13 @@
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"documentation": "^4.0.0-beta2",
"eslint": "^4.1.1",
"expect": "^1.20.2",
"istanbul": "^0.4.2",
"jsdom": "^11.0.0",
"mocha": "^3.1.2",
"node-sass": "^3.4.2",
"sinon": "^1.17.6",
"svg2ttf": "^4.0.1",
"ttf2eot": "^2.0.0",
"ttf2woff": "^2.0.1",
"ttf2woff2": "^2.0.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
Expand Down
Loading

0 comments on commit 2a464fc

Please sign in to comment.