mirror of
https://github.com/EDCD/coriolis-data.git
synced 2025-12-08 23:23:23 +00:00
14 lines
247 B
JavaScript
14 lines
247 B
JavaScript
module.exports = {
|
|
'env': {
|
|
'browser': true,
|
|
'node': true
|
|
},
|
|
'extends': 'eslint:recommended',
|
|
'rules': {
|
|
'indent': ['error', 2],
|
|
'linebreak-style': [2, 'unix'],
|
|
'quotes': [2, 'single'],
|
|
'semi': [2, 'always']
|
|
}
|
|
};
|