-
-
Notifications
You must be signed in to change notification settings - Fork 694
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into documentation-blocks
- Loading branch information
Showing
4,877 changed files
with
303,137 additions
and
177,922 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
webpack/* | ||
karma.conf.js | ||
tests.webpack.js | ||
node_modules | ||
build | ||
packages/volto | ||
packages/volto-guillotina | ||
!.* | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
// @ts-check | ||
|
||
/** @type {import('eslint').Linter.Config} */ | ||
const config = { | ||
parser: '@typescript-eslint/parser', // Specifies the ESLint parser | ||
parserOptions: { | ||
ecmaVersion: 'ESNext', // Allows for the parsing of modern ECMAScript features | ||
sourceType: 'module', // Allows for the use of imports | ||
ecmaFeatures: { | ||
jsx: true, // Allows for the parsing of JSX | ||
}, | ||
}, | ||
rules: { | ||
// 'import/no-unresolved': ['error', { ignore: ['^@plone/'] }], | ||
// 'import/extensions': 'off', | ||
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs | ||
// e.g. "@typescript-eslint/explicit-function-return-type": "off", | ||
}, | ||
settings: { | ||
react: { | ||
version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use | ||
}, | ||
settings: { | ||
'import/parsers': { | ||
'@typescript-eslint/parser': ['.ts', '.tsx'], | ||
}, | ||
'import/resolver': { | ||
// node: { | ||
// extensions: ['.js', '.jsx', '.ts', '.tsx'], | ||
// }, | ||
typescript: { | ||
alwaysTryTypes: true, // always try to resolve types under `<root>@types` directory even it doesn't contain any source code, like `@types/unist` | ||
|
||
// use an array of glob patterns | ||
project: [ | ||
'packages/*/tsconfig.json', | ||
// 'other-packages/*/tsconfig.json', | ||
], | ||
}, | ||
}, | ||
}, | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['**/*.ts', '**/*.tsx'], | ||
plugins: ['@typescript-eslint', 'import'], | ||
extends: [ | ||
'plugin:react/recommended', | ||
// 'plugin:@typescript-eslint/eslint-recommended', | ||
// 'plugin:@typescript-eslint/recommended', | ||
// 'plugin:import/recommended', | ||
'plugin:import/typescript', | ||
'plugin:prettier/recommended', | ||
'plugin:react/jsx-runtime', | ||
// 'plugin:storybook/recommended', | ||
], | ||
}, | ||
{ | ||
files: ['**/*.js', '**/*.jsx'], | ||
plugins: ['import'], | ||
extends: [ | ||
'plugin:react/recommended', | ||
// 'plugin:import/recommended', | ||
'plugin:prettier/recommended', | ||
'plugin:react/jsx-runtime', | ||
// 'plugin:storybook/recommended', | ||
], | ||
rules: { | ||
'react/prop-types': 0, | ||
'react/no-unescaped-entities': 0, | ||
}, | ||
}, | ||
], | ||
}; | ||
|
||
module.exports = config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
--- | ||
name: "\U0001F680 PLIP" | ||
about: Plone Improvement Proposal | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## PLIP (Plone Improvement Proposal) | ||
|
||
<!-- | ||
Read http://5.docs.plone.org/develop/coredev/docs/plips.html first! | ||
Set "03 type: feature: plip" as label. | ||
Mention the @plone/volto-team when the PLIP is information complete! | ||
--> | ||
|
||
## Responsible Persons | ||
|
||
### Proposer: <!-- full NAME of the proposer, should lead the PLIP - if not possible, tell about it! --> | ||
|
||
### Seconder: <!-- NAME of another person supporting this PLIP --> | ||
|
||
## Abstract | ||
|
||
<!-- a comprehensive overview of the subject --> | ||
|
||
## Motivation | ||
|
||
<!-- | ||
Reason or motivation this proposal was created | ||
--> | ||
|
||
## Assumptions | ||
|
||
<!-- Preconditions --> | ||
|
||
## Proposal & Implementation | ||
|
||
<!-- | ||
Detailed proposal with implementation details and - if needed - possible variants to be discussed. | ||
--> | ||
|
||
## Deliverables | ||
|
||
<!-- | ||
Packages and documentation chapters involved, includes also third party if needed. | ||
--> | ||
|
||
## Risks | ||
|
||
<!-- | ||
What will break/ affect existing installations of Plone after upgrade, including end user point of view, training efforts etc. | ||
--> | ||
|
||
## Participants | ||
|
||
<!-- | ||
list of persons and roles known | ||
--> |
Oops, something went wrong.