Skip to content

Instantly share code, notes, and snippets.

@Peruibeloko
Last active September 25, 2021 17:46
Show Gist options
  • Save Peruibeloko/aa502167d1e45688f56d953bdc972beb to your computer and use it in GitHub Desktop.
Save Peruibeloko/aa502167d1e45688f56d953bdc972beb to your computer and use it in GitHub Desktop.
ESLint config for Node projects
module.exports = {
extends: 'eslint:recommended',
env: {
es2021: true,
node: true,
amd: true
},
rules: {
'arrow-parens': ['warn', 'as-needed'],
'comma-dangle': ['warn', 'never'],
quotes: ['warn', 'single'],
'no-unused-vars': [
'error',
{
varsIgnorePattern: '^_',
argsIgnorePattern: '^_'
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment