Make the preference help text match reality

Still a bit too technical I think, but not sure how to improve it.
1 file changed
tree: 8f98d2c888c184afe4dc6d8604abc6d873db0061
  1. .phan/
  2. i18n/
  3. src/
  4. tests/
  5. .eslintrc.json
  6. .gitignore
  7. .gitreview
  8. .phpcs.xml
  9. .stylelintrc.json
  10. CODE_OF_CONDUCT.md
  11. composer.json
  12. COPYING
  13. extension.json
  14. Gruntfile.js
  15. package-lock.json
  16. package.json
  17. README.md
README.md

This is a blank extension template. It doesn't really do anything on its own. It is intended to provide a boiler template for an actual MediaWiki extension.

If you are checking this out from Git and intend to use it, you may use the following commands to make a clean directory of just this template without the Git meta-data and other examples.

cd extensions
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/BoilerPlate.git
cp -r BoilerPlate ./MyExtension
rm -rf ./MyExtension/.git

This automates the recommended code checkers for PHP and JavaScript code in Wikimedia projects (see https://www.mediawiki.org/wiki/Continuous_integration/Entry_points). To take advantage of this automation.

  1. install nodejs, npm, and PHP composer
  2. change to the extension's directory
  3. npm install
  4. composer install

Once set up, running npm test and composer test will run automated code checks.