2023-08-03 10:54:25 -05:00
|
|
|
'use strict'
|
|
|
|
|
2017-11-14 08:25:02 -06:00
|
|
|
module.exports = {
|
2020-06-03 03:58:18 -05:00
|
|
|
arrowParens: 'avoid',
|
2018-11-27 09:03:45 -06:00
|
|
|
jsxSingleQuote: true,
|
2017-11-14 08:25:02 -06:00
|
|
|
semi: false,
|
2017-12-18 09:47:00 -06:00
|
|
|
singleQuote: true,
|
2023-08-03 10:54:25 -05:00
|
|
|
trailingComma: 'es5',
|
2020-11-24 03:50:40 -06:00
|
|
|
|
|
|
|
// 2020-11-24: Requested by nraynaud and approved by the rest of the team
|
|
|
|
//
|
|
|
|
// https://team.vates.fr/vates/pl/a1i8af1b9id7pgzm3jcg4toacy
|
|
|
|
printWidth: 120,
|
2017-11-14 08:25:02 -06:00
|
|
|
}
|