1.0.0 • Published 9 months ago

@govie-ds/eslint-config v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

@govie-ds/eslint-config

pnpm add -D eslint @govie-ds/eslint-config

package.json

"scripts": {
    "lint": "eslint 'src/**/*.{ts,tsx}'"
}

eslint.config.js

export { eslintConfig as default } from '@govie-ds/eslint-config';
import { eslintConfig } from '@govie-ds/eslint-config';

export default [
  ...eslintConfig,
  // your modifications
  {
    rules: {
      ...
    },
  },
];