Let’s clean up our PHP code using PHP_CodeSniffer
PHP is one of the most popular languages for application development, and it enjoys widespread use. With a history of 20 years, many libraries and frameworks have been developed for…
PHP is one of the most popular languages for application development, and it enjoys widespread use. With a history of 20 years, many libraries and frameworks have been developed for…
Are you writing code that follows the coding conventions? In the first place, I think most businesses might not even have their own coding conventions. Of course, I can’t say…
In order to maintain high quality source code, usually a coding standard is prepared in advance, and the code is written based on that. Especially for scripting languages there is…
Regardless of which programming language you’re using, each has a unique development style when multiple people are using it. I’ll now introduce flake8, a tool for checking Python syntax. SideCI supports…
A bug can unexpectedly occur in complex or tricky coding. On top of that, due to a single typo, it may be that the variable or method isn’t actually being…
There are quite a few people in the team who dislike using JavaScript as it is. Common reasons include difficulties in defining types, there being too many parentheses, and codes…
We’re happy to announce the release of Gry, an automatic .rubocop.yml generation tool.What is Gry?Gry is a tool which automatically generates a config file for RuboCop (.rubocop.yml). By using Gry, you can…
Hello! This is pocke, the RuboCop lover!I’m happy to inform you of the release of MeowCop, a Gem for configuring RuboCop.GitHub: https://github.com/sideci/meowcopRubyGems: https://rubygems.org/gems/meowcopDefault settings for RuboCop are hard to use…You may…
Hello, I have summarized Style guide of python and programming device for coding rules in this entry. I described 5 different tools which are pep8, pyflakes, flake8, haking, Pylint. Since…
These days more people are trying to follow the coding rules. The coding style is also illustrated in details in PHP: The Right Way.Regarding PHP, our codes are all verified…