Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created February 22, 2023 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sibelius/a0ae9216717f8bc6cba61099e216ca74 to your computer and use it in GitHub Desktop.
Save sibelius/a0ae9216717f8bc6cba61099e216ca74 to your computer and use it in GitHub Desktop.
empty .eslintrc.js
module.exports = {
extends: [
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 10,
sourceType: 'module',
ecmaFeatures: {
modules: true,
},
},
rules: {
},
plugins: [
],
globals: {
require: true,
},
env: {
jest: true,
node: true,
es6: true,
browser: true,
},
reportUnusedDisableDirectives: true,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment