- Strict config for eslint.
$ yarn add -D eslint-config-strict-check
// eslint.config.mjs
import eslintConfigStrictCheck from "eslint-config-strict-check"
export default [
...eslintConfigStrictCheck.configs.typescript,
]
// eslint.config.mjs
import eslintConfigStrictCheck from "eslint-config-strict-check"
export default [
...eslintConfigStrictCheck.configs.typescriptMax,
]
// eslint.config.mjs
import eslintConfigStrictCheck from "eslint-config-strict-check"
export default [
...eslintConfigStrictCheck.configs.react,
]
// eslint.config.mjs
import eslintConfigStrictCheck from "eslint-config-strict-check"
export default [
...eslintConfigStrictCheck.configs.reactMax,
]
This is the same settings as react config currently.
Because, have an error when extends eslint-config-next.
// eslint.config.mjs
import eslintConfigStrictCheck from "eslint-config-strict-check"
export default [
...eslintConfigStrictCheck.configs.next,
]
This is the same settings as reactMax config currently.
Because, have an error when extends eslint-config-next.
// eslint.config.mjs
import eslintConfigStrictCheck from "eslint-config-strict-check"
export default [
...eslintConfigStrictCheck.configs.nextMax,
]
// .eslintrc.js
module.exports = {
extends: ["strict-check"]
}
// .eslintrc.js
module.exports = {
extends: ["strict-check/legacy-typescript-max"]
}
// .eslintrc.js
module.exports = {
extends: ["strict-check/legacy-react"]
}
// .eslintrc.js
module.exports = {
extends: ["strict-check/legacy-react-max"]
}
// .eslintrc.js
module.exports = {
extends: ["strict-check/legacy-next"]
}
// .eslintrc.js
module.exports = {
extends: ["strict-check/legacy-next-max"]
}
- eslint-plugin-jest
- eslint-plugin-react
- eslint-plugin-react-hooks
- eslint-plugin-storybook
- eslint-plugin-unicorn
- eslint-plugin-strict-check
- MIT
- This is includes the work that is distributed in the Apache License 2.0.