7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
singleQuote: true,
|
|
bracketSpacing: false,
|
|
trailingComma: 'none',
|
|
printWidth: 100
|
|
};
|