Skip to content
Snippets Groups Projects
Commit b10d3748 authored by Oswaldo Acauan's avatar Oswaldo Acauan
Browse files

Replace JSCS in favor of ESLint

parent 8f2ad070
No related branches found
No related tags found
No related merge requests found
tests/*
module.exports = {
"extends": "airbnb",
"plugins": [
"react",
"jsx-a11y",
"import"
],
"rules": {
},
};
{
"preset": "airbnb",
"maxErrors": null, // display all errors
"fileExtensions": [".js", ".jsx"],
"esnext": true
}
This diff is collapsed.
......@@ -5,8 +5,8 @@
"start": "cd app;./start.sh",
"preinstall": "npm install grunt-cli",
"test": "cd app;JASMINE_BROWSER=PhantomJS JASMINE_MIRROR_PORT=3000 meteor run --test",
"lint": "node_modules/jscs/bin/jscs *",
"autofix": "node_modules/jscs/bin/jscs * --fix"
"lint": "eslint * --ext .jsx,.js",
"autofix": "eslint * --ext .jsx,.js"
},
"dependencies": {
"babel-runtime": "^6.18.0",
......@@ -37,15 +37,20 @@
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"eslint": "~3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "~11.2.0",
"eslint-plugin-import": "~2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"grunt": "^0.4.5",
"grunt-concurrent": "~2.2.1",
"grunt-contrib-watch": "~1.0.0",
"grunt-force-task": "~2.0.0",
"grunt-jscs": "~2.8.0",
"grunt-newer": "~1.2.0",
"grunt-shell": "~1.2.1",
"jscs": "~2.11.0",
"load-grunt-tasks": "~3.4.1",
"grunt-newer": "~1.2.0",
"postcss-modules-extract-imports": "1.0.0",
"postcss-modules-local-by-default": "1.0.0",
"postcss-modules-scope": "1.0.0",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment