mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 10:06:17 +08:00
5870a6097a
* Chore/unit test (#538) * chore: add unit test * chore: add github action for unit test * feat: init firebase * chore: add development secrets * fix: rename auth -> data-services * feat: update blocksuite 0.3.0-alpha.4 (#543) * feat: add requests * feat: optimize swr cache * feat: add Authorization * feat: add confirm-invitation page * feat: add account sdk api and proxy * docs: update contributing (#550) * docs: update contributing * Update CONTRIBUTING.md * Update CONTRIBUTING.md Co-authored-by: ShortCipher5 <me@shortcipher.me> * feat: update api * feat: remove babelrc setting * feat: add create workspace ui * feat: choose workspaces * feat: login modal * feat: authorization api * feat: login status * fix: remove unused variables * feat: login button * fix: lint * fix: workspace id * fix: i18n type error Co-authored-by: MingLiang Wang <mingliangwang0o0@gmail.com> Co-authored-by: ShortCipher5 <me@shortcipher.me>
20 lines
535 B
JavaScript
20 lines
535 B
JavaScript
// https://eslint.org/docs/latest/user-guide/configuring
|
||
// "off" or 0 - turn the rule off
|
||
// "warn" or 1 - turn the rule on as a warning (doesn’t affect exit code)
|
||
// "error" or 2 - turn the rule on as an error (exit code will be 1)
|
||
|
||
/** @type { import('eslint').Linter.Config } */
|
||
module.exports = {
|
||
extends: [
|
||
'next/core-web-vitals',
|
||
'plugin:@next/next/recommended',
|
||
'plugin:prettier/recommended',
|
||
// 'next/babel',
|
||
],
|
||
rules: {
|
||
'prettier/prettier': 'warn',
|
||
},
|
||
|
||
reportUnusedDisableDirectives: true,
|
||
};
|