We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 354f73a commit 38f9550Copy full SHA for 38f9550
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "eslint-plugin-primer-react",
3
- "version": "0.1.0",
+ "version": "0.4.0",
4
"description": "ESLint rules for Primer React",
5
"main": "src/index.js",
6
"scripts": {
src/configs/recommended.js
@@ -1,10 +1,12 @@
module.exports = {
parserOptions: {
- ecmaVersion: 'latest',
sourceType: 'module',
ecmaFeatures: {
jsx: true
7
}
8
},
9
- rules: [['primer-react/no-deprecated-colors', 'warn']]
+ plugins: ['primer-react'],
+ rules: {
10
+ 'primer-react/no-deprecated-colors': 'warn'
11
+ }
12
0 commit comments