PluginProbe
SimpleTOC – Table of Contents Block / 7.3.1
SimpleTOC – Table of Contents Block v7.3.1
7.3.1 7.2.0 7.3.0 7.1.1 7.1.0 7.0.10 7.0.9 7.0.8 7.0.7 7.0.6 7.0.4 7.0.5 5.0.21.1 5.0.22 5.0.23 5.0.24 5.0.25 5.0.25.1 5.0.27 5.0.28 5.0.29 5.0.3 5.0.30 5.0.31 5.0.32 All 160 releases
simpletoc / .eslintrc.js

.eslintrc.js in SimpleTOC – Table of Contents Block 7.3.1, at .eslintrc.js

21 lines 393 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 module.exports = {
2 extends: [ 'plugin:@wordpress/eslint-plugin/recommended' ],
3 rules: {
4 // WordPress provides these as externals
5 'import/no-unresolved': [
6 'error',
7 {
8 ignore: [ '^@wordpress/' ],
9 },
10 ],
11
12 // Do NOT require @wordpress/* to be installed
13 'import/no-extraneous-dependencies': [
14 'error',
15 {
16 optionalDependencies: [ '@wordpress/*' ],
17 },
18 ],
19 },
20 };
21