* Added local tooling config files to the tooling/ directory * Moved as many docker-related files as possible * Updated dockerfile path * Updated the correct dockerfile instead how about * Off day - jeez louise * Juggled around some more dockerfiles * more dockerfile * More docker tests * it's docker time * One more shot
13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false,
|
|
singleQuote: true,
|
|
jsxSingleQuote: false,
|
|
trailingComma: 'none',
|
|
bracketSpacing: true,
|
|
arrowParens: 'always',
|
|
requirePragma: false,
|
|
endOfLine: 'lf'
|
|
}
|