diff --git a/modules/_node-scripts/format/stylelint/plugins/no-import-extension.js b/modules/_node-scripts/format/stylelint/plugins/no-import-extension.js index 2008fe3875f142..a2fe41cfc01310 100644 --- a/modules/_node-scripts/format/stylelint/plugins/no-import-extension.js +++ b/modules/_node-scripts/format/stylelint/plugins/no-import-extension.js @@ -53,8 +53,9 @@ module.exports = stylelint.createPlugin( return; } - const [, left, params, right] = - rule.params.match(PARAMS_REGEXP); + const [, left, params, right] = rule.params.match( + PARAMS_REGEXP + ); if (params.endsWith(SCSS_EXT)) { const desired = diff --git a/modules/_node-scripts/format/stylelint/plugins/trim-comments.js b/modules/_node-scripts/format/stylelint/plugins/trim-comments.js index cb85626a28e58c..e5b86d765ccf4b 100644 --- a/modules/_node-scripts/format/stylelint/plugins/trim-comments.js +++ b/modules/_node-scripts/format/stylelint/plugins/trim-comments.js @@ -116,8 +116,9 @@ module.exports = stylelint.createPlugin( // so we have to reattach them to the next // node. - const blanks = - comment.raws.before.match(/^\n+/); + const blanks = comment.raws.before.match( + /^\n+/ + ); if (blanks && next) { next.raws.before = '\n' + next.raws.before; diff --git a/modules/apps/commerce/commerce-theme-minium/commerce-theme-minium/postcss.config.js b/modules/apps/commerce/commerce-theme-minium/commerce-theme-minium/postcss.config.js index bffe253f5ff947..5d42d9795098f4 100644 --- a/modules/apps/commerce/commerce-theme-minium/commerce-theme-minium/postcss.config.js +++ b/modules/apps/commerce/commerce-theme-minium/commerce-theme-minium/postcss.config.js @@ -3,8 +3,6 @@ * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06 */ -/* global module*/ - module.exports = { plugins: { autoprefixer: { diff --git a/modules/apps/commerce/commerce-theme-speedwell/commerce-theme-speedwell/postcss.config.js b/modules/apps/commerce/commerce-theme-speedwell/commerce-theme-speedwell/postcss.config.js index bffe253f5ff947..5d42d9795098f4 100644 --- a/modules/apps/commerce/commerce-theme-speedwell/commerce-theme-speedwell/postcss.config.js +++ b/modules/apps/commerce/commerce-theme-speedwell/commerce-theme-speedwell/postcss.config.js @@ -3,8 +3,6 @@ * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06 */ -/* global module*/ - module.exports = { plugins: { autoprefixer: { diff --git a/modules/npmscripts.config.js b/modules/npmscripts.config.js index c84da41811c5e9..ede6b23bfa1163 100644 --- a/modules/npmscripts.config.js +++ b/modules/npmscripts.config.js @@ -785,18 +785,26 @@ module.exports = { ], 'allowed-non-global-dependencies': [ '@liferay/npm-scripts', + '@typescript-eslint/parser', '@vscode/ripgrep', 'alloy-ui', 'axios', + 'babel-eslint', 'browser-tabs-lock', 'ckeditor4', 'codemirror', 'core-js', + 'cross-env', 'd3', - 'esbuild', 'es-module-shims', + 'esbuild', + 'eslint', + 'execa', + 'fast-glob', 'fetch-mock', 'fs', + 'glob', + 'globby', 'gulp', 'hash.js', 'history', @@ -808,11 +816,14 @@ module.exports = { 'os-browserify', 'path-browserify', 'path-to-regexp', + 'prettier', 'react-dnd-test-utils', 'resize-observer-polyfill', 'resolve', + 'stylelint', 'swagger-ui-react', 'timers-browserify', + 'typescript', 'webpack', ], },