Skip to content

Instantly share code, notes, and snippets.

@nikitadmitr
Created September 7, 2023 12:26
Show Gist options
  • Save nikitadmitr/84ee516046a06402a0247ce41c2ad938 to your computer and use it in GitHub Desktop.
Save nikitadmitr/84ee516046a06402a0247ce41c2ad938 to your computer and use it in GitHub Desktop.
simple-esling-config
module.exports = {
'parserOptions': {
'ecmaVersion': 'latest'
},
'env': {
'browser': true,
'node': true,
},
'rules': {
'semi': ['warn', 'always'],
'quotes': ['warn', 'single'],
'no-unused-vars': ['warn', { 'args': 'all' }]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment