-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update linting to use repo-tools configs (#2398)
* Lint using repo-tools configs * Git ignore all repo-tools configs and extend phpcs config * Add setup step to lint workflow * Restore phpcs config * Remove locale-switcher package lock It should use the yarn.lock * Stop tracking locale-switcher as it lives in SVN * Update lint workflow * Revert removing locale-switcher from source Reset changes from composer install in lint workflow instead
- Loading branch information
1 parent
41aeaa6
commit 03a10e0
Showing
27 changed files
with
91 additions
and
15,537 deletions.
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
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
This file was deleted.
Oops, something went wrong.
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
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,9 @@ | ||
module.exports = { | ||
extends: '../../../../.eslintrc.js', | ||
rules: { | ||
/* | ||
* Set up our text domain. | ||
*/ | ||
'@wordpress/i18n-text-domain': [ 'error', { allowedTextDomain: [ 'wporg' ] } ], | ||
}, | ||
}; |
Oops, something went wrong.