mirror of
https://github.com/Shopify/draggable.git
synced 2025-12-08 20:15:56 +00:00
28 lines
487 B
JavaScript
28 lines
487 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
extends: [
|
|
'plugin:@shopify/typescript',
|
|
'plugin:@shopify/jest',
|
|
'plugin:@shopify/prettier',
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
},
|
|
rules: {
|
|
'jest/valid-title': 'off',
|
|
},
|
|
settings: {
|
|
'import/resolver': {
|
|
node: {
|
|
paths: [
|
|
path.resolve(__dirname, 'src'),
|
|
path.resolve(__dirname, 'test'),
|
|
],
|
|
},
|
|
},
|
|
},
|
|
};
|