Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/eslint-plugin-react/lib/rules/jsx-indent-props.js

    rd565449 r0c6b92a  
    4646};
    4747
     48/** @type {import('eslint').Rule.RuleModule} */
    4849module.exports = {
    4950  meta: {
     
    117118     * Reports a given indent violation and properly pluralizes the message
    118119     * @param {ASTNode} node Node violating the indent rule
    119      * @param {Number} needed Expected indentation character count
    120      * @param {Number} gotten Indentation character count in the actual node/code
     120     * @param {number} needed Expected indentation character count
     121     * @param {number} gotten Indentation character count in the actual node/code
    121122     */
    122123    function report(node, needed, gotten) {
     
    142143     * Get node indent
    143144     * @param {ASTNode} node Node to examine
    144      * @return {Number} Indent
     145     * @return {number} Indent
    145146     */
    146147    function getNodeIndent(node) {
     
    174175     * Check indent for nodes list
    175176     * @param {ASTNode[]} nodes list of node objects
    176      * @param {Number} indent needed indent
     177     * @param {number} indent needed indent
    177178     */
    178179    function checkNodesIndent(nodes, indent) {
Note: See TracChangeset for help on using the changeset viewer.