mirror of
https://github.com/aljazceru/nostr-profile-manager.git
synced 2025-12-17 05:34:20 +01:00
19 lines
341 B
JavaScript
19 lines
341 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: [
|
|
'@typescript-eslint',
|
|
],
|
|
// extends: [
|
|
// 'eslint:recommended',
|
|
// 'plugin:@typescript-eslint/recommended',
|
|
// ],
|
|
extends: [
|
|
'airbnb-base',
|
|
'airbnb-typescript/base'
|
|
],
|
|
parserOptions: {
|
|
project: './tsconfig.json'
|
|
},
|
|
};
|