20 lines
333 B
JavaScript
20 lines
333 B
JavaScript
'use strict'
|
|
const neostandard = require('neostandard')
|
|
|
|
module.exports = [
|
|
...neostandard({
|
|
ignores: [
|
|
'lib/configValidator.js',
|
|
'lib/error-serializer.js',
|
|
'test/same-shape.test.js',
|
|
'test/types/import.js'
|
|
],
|
|
ts: true
|
|
}),
|
|
{
|
|
rules: {
|
|
'comma-dangle': ['error', 'never']
|
|
}
|
|
}
|
|
]
|