13 lines
345 B
JavaScript
13 lines
345 B
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
module.exports = {
|
|
extends: ['next/core-web-vitals', 'plugin:storybook/recommended', 'prettier'],
|
|
parserOptions: {
|
|
project: ['./tsconfig.json'],
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
plugins: ['eslint-plugin-prettier'],
|
|
rules: {
|
|
"prefer-const": "error",
|
|
"prettier": "error"
|
|
}
|
|
}
|