UNPKG

338 BJavaScriptView Raw
1/* eslint sort-keys: ["error", "asc"], quote-props: ["error", "consistent"] */
2/* eslint-disable sort-keys */
3
4module.exports = {
5 plugins: [
6 "@typescript-eslint"
7 ],
8 rules: {
9 "@typescript-eslint/array-type": [
10 "warn",
11 {
12 default: 'array',
13 }
14 ]
15 }
16};