9.0.1 • Published 1 year ago
react-eslint-standard v9.0.1
⚡react-eslint-standard
quickly start eslint in react.
install
npm i react-eslint-standard -D
eslint.config.js
import { defineConfig } from 'react-eslint-standard';
export default defineConfig();
.prettierrc.js
/**
* @type {import("prettier").Config}
*/
export default {
singleQuote: true,
trailingComma: 'all',
bracketSameLine: true,
endOfLine: 'auto',
};
custom configuration
import { defineConfig } from 'react-eslint-standard';
import tseslint from 'typescript-eslint';
export default defineConfig({
extends: [...tseslint.configs.recommended, ...tseslint.configs.strict],
rules: {
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-empty-object-type': 'off',
},
});
9.9.0
9 months ago
9.7.0
9 months ago
9.6.0
9 months ago
9.16.0
5 months ago
9.12.0
8 months ago
9.13.0
7 months ago
9.14.0
7 months ago
9.15.0
7 months ago
9.10.0
9 months ago
9.11.0
8 months ago
9.5.0
10 months ago
9.4.0
11 months ago
9.3.0
11 months ago
9.2.0
12 months ago
9.1.0
12 months ago
9.0.11
1 year ago
9.0.10
1 year ago
9.0.9
1 year ago
9.0.8
1 year ago
9.0.7
1 year ago
9.0.6
1 year ago
9.0.5
1 year ago
9.0.4
1 year ago
9.0.3
1 year ago
9.0.1
1 year ago
9.0.0
1 year ago