forked from trent_larson/crowd-funder-for-time-pwa
17 lines
278 B
JavaScript
17 lines
278 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
ecmaVersion: 12,
|
|
sourceType: 'module',
|
|
requireConfigFile: false,
|
|
},
|
|
plugins: [],
|
|
rules: {
|
|
quotes: [
|
|
'error',
|
|
'single',
|
|
{ avoidEscape: true, allowTemplateLiterals: true },
|
|
],
|
|
},
|
|
};
|