[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-full-static. Full static implementation for Nuxt 3
0

Configure Feed

Select the types of activity you want to include in your feed.

nuxt-full-static / .eslintrc.cjs
760 B 29 lines
1module.exports = { 2 env: { 3 browser: true, 4 es6: true, 5 node: true, 6 }, 7 parser: '@typescript-eslint/parser', 8 parserOptions: { 9 sourceType: 'module', 10 }, 11 plugins: ['@typescript-eslint'], 12 extends: [ 13 'plugin:@typescript-eslint/recommended', 14 'eslint:recommended', 15 'plugin:prettier/recommended', 16 'prettier', 17 ], 18 rules: { 19 '@typescript-eslint/ban-ts-comment': 'off', 20 '@typescript-eslint/ban-types': 'off', 21 '@typescript-eslint/explicit-function-return-type': 'off', 22 '@typescript-eslint/explicit-module-boundary-types': 'off', 23 '@typescript-eslint/no-inferrable-types': 1, 24 '@typescript-eslint/no-explicit-any': 'off', 25 'no-unused-vars': 'off', 26 'no-redeclare': 'off', 27 'no-undef': 'off', 28 }, 29}