11 lines
157 B
JavaScript
11 lines
157 B
JavaScript
'use strict'
|
|
|
|
const neostandard = require('neostandard')
|
|
|
|
module.exports = neostandard({
|
|
ignores: [
|
|
'test/ts/**/*',
|
|
'test/syntax-error.mjs'
|
|
]
|
|
})
|