mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RelatedArticles
synced 2024-12-24 05:43:43 +00:00
cd055fde89
Copypasta the following files from the BoilerPlate extension [0]: * package.json * Gruntfile.js * .jscsrc * .jshintrc * .jshintignore * composer.json * phpcs.xml Add the following supporting files: * .gitignore * composer.lock Finally, fix the existing coding standard violations. [0] https://github.com/wikimedia/mediawiki-extensions-BoilerPlate Change-Id: I30c6cf9e0a637bab5d8f47790b9af57183b6e6fb
21 lines
249 B
Plaintext
21 lines
249 B
Plaintext
{
|
|
// Enforcing
|
|
"bitwise": true,
|
|
"eqeqeq": true,
|
|
"es3": true,
|
|
"latedef": true,
|
|
"noarg": true,
|
|
"nonew": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
"strict": false,
|
|
|
|
// Environment
|
|
"browser": true,
|
|
|
|
"globals": {
|
|
"mw": false,
|
|
"$": false
|
|
}
|
|
}
|