mirror of
https://github.com/moonrepo/setup-rust.git
synced 2025-04-19 00:58:43 +00:00
13 lines
237 B
JavaScript
13 lines
237 B
JavaScript
/* eslint-disable sort-keys */
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: ['moon', 'moon/node'],
|
|
parserOptions: {
|
|
project: 'tsconfig.json',
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
rules: {
|
|
'unicorn/prefer-top-level-await': 'off',
|
|
},
|
|
};
|