mirror of
https://github.com/TECHNOFAB11/svelte-oidc.git
synced 2025-12-10 23:20:05 +01:00
follows a pattern similar to @dopry/svelte-auth0, but uses the more standards compliant oidc-client.js library.
20 lines
364 B
JavaScript
20 lines
364 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
es6: true,
|
|
'cypress/globals': true,
|
|
},
|
|
extends: ['eslint:recommended', 'plugin:cypress/recommended', 'prettier'],
|
|
overrides: [
|
|
{
|
|
files: '*.svelte',
|
|
processor: 'svelte3/svelte3',
|
|
},
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 2019,
|
|
sourceType: 'module',
|
|
},
|
|
plugins: ['svelte3', 'cypress'],
|
|
};
|