mirror of
https://github.com/ivuorinen/generic-landing-page.git
synced 2026-01-26 03:33:59 +00:00
14 lines
224 B
JavaScript
14 lines
224 B
JavaScript
import ivuorinenConfig from '@ivuorinen/eslint-config';
|
|
|
|
export default [
|
|
...ivuorinenConfig,
|
|
|
|
// your modifications
|
|
{
|
|
rules: {
|
|
// "no-unused-vars": "warn"
|
|
"n/no-unpublished-import": "off"
|
|
}
|
|
}
|
|
];
|