eslint-config-fullstack
Advanced tools
Comparing version 5.1.0 to 6.0.0
{ | ||
"name": "eslint-config-fullstack", | ||
"version": "5.1.0", | ||
"version": "6.0.0", | ||
"description": "a complete starter ESLint config file to help students avoid errors and learn best practices", | ||
@@ -49,6 +49,6 @@ "main": "index.js", | ||
"devDependencies": { | ||
"babel-eslint": "^8.2.2", | ||
"babel-eslint": "^8.2.6", | ||
"chai": "^4.1.2", | ||
"eslint": "~4.19.1", | ||
"eslint-plugin-react": "~7.7.0", | ||
"eslint": "~5.0.1", | ||
"eslint-plugin-react": "~7.10.0", | ||
"lint-staged": "^7.0.3", | ||
@@ -59,7 +59,7 @@ "mocha": "^5.0.5", | ||
"peerDependencies": { | ||
"eslint": "^4.19.1", | ||
"eslint-plugin-react": "^7.7.0", | ||
"babel-eslint": "^8.2.2" | ||
"eslint": "^5.0.1", | ||
"eslint-plugin-react": "^7.10.0", | ||
"babel-eslint": "^8.2.6" | ||
}, | ||
"dependencies": {} | ||
} |
@@ -57,2 +57,3 @@ 'use strict' | ||
'react/no-unknown-property': 1, // Prevent usage of unknown DOM property (fixable) | ||
'react/no-unsafe': 1, // Prevent usage of `UNSAFE_` methods | ||
'react/no-unused-prop-types': 1, // Prevent definitions of unused prop types | ||
@@ -101,2 +102,3 @@ 'react/no-will-update-set-state': 2, // Prevent usage of `setState` in `componentWillUpdate` | ||
'react/jsx-pascal-case': 1, // Enforce PascalCase for user-defined JSX components | ||
'react/jsx-props-no-multi-spaces': 0, // Disallow multiple spaces between inline JSX props (fixable) | ||
'react/jsx-sort-default-props': 0, // Enforce default props alphabetical sorting | ||
@@ -103,0 +105,0 @@ 'react/jsx-sort-props': 0, // Enforce props alphabetical sorting |
Sorry, the diff of this file is not supported yet
43215
479